From d4d3b73863824f7a31afe4b7af9e86707adedfb4 Mon Sep 17 00:00:00 2001 From: Jyrki Gadinger Date: Thu, 17 Apr 2025 18:04:46 +0200 Subject: [PATCH] fix(gui): update info text with proper invalid characters Signed-off-by: Jyrki Gadinger --- src/gui/invalidfilenamedialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/invalidfilenamedialog.cpp b/src/gui/invalidfilenamedialog.cpp index f26a5161a..ed51d9518 100644 --- a/src/gui/invalidfilenamedialog.cpp +++ b/src/gui/invalidfilenamedialog.cpp @@ -97,7 +97,7 @@ InvalidFilenameDialog::InvalidFilenameDialog(AccountPtr account, switch (invalidMode) { case InvalidMode::SystemInvalid: _ui->descriptionLabel->setText(tr("The file \"%1\" could not be synced because the name contains characters which are not allowed on this system.").arg(_originalFileName)); - _ui->explanationLabel->setText(tr("The following characters are not allowed on the system: * \" | & ? , ; : \\ / ~ < > leading/trailing spaces")); + _ui->explanationLabel->setText(tr("The following characters are not allowed on the system: \\ / : ? * \" < > | leading/trailing spaces")); break; case InvalidMode::ServerInvalid: _ui->descriptionLabel->setText(tr("The file \"%1\" could not be synced because the name contains characters which are not allowed on the server.").arg(_originalFileName)); -- 2.30.2